home *** CD-ROM | disk | FTP | other *** search
/ Network Supervisor's Toolkit / Network Supervisor's Toolkit.iso / tools / lu62 / include / prefix.h < prev    next >
C/C++ Source or Header  |  1996-07-10  |  393b  |  12 lines

  1. struct prefix {
  2. /*
  3.  * This structure defines buffer prefix
  4.  */
  5. struct prefix *next; /* Pointer to next buffer */
  6. struct prefix *prev; /* Pointer to preveius buffer */
  7. unsigned char type;  /* Type of operation (i.e. Send,Flush,Confirm)*/
  8. unsigned char dsc;   /* Segment descriptor */
  9. unsigned int  lt_text; /* Length of text */
  10. char *text; /* Pointer to text filling the buffer*/
  11. };
  12.